home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / sensor.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  5.4 KB  |  214 lines

  1. //-------------------------------------------------------------------------- 
  2. //-------------------------------------------------------------------------- 
  3.  
  4. //-------------------------------------------------------------------------- 
  5. // Default sensor methods
  6.  
  7. function Sensor::onActivate(%this)
  8. {
  9.     if(GameBase::isPowered(%this)) {
  10.         GameBase::playSequence(%this,0,"power");
  11.     }
  12. }
  13.  
  14. function Sensor::onDeactivate(%this)
  15. {
  16.     GameBase::pauseSequence(%this,0);
  17. }
  18.  
  19. function Sensor::onPower(%this,%power,%generator)
  20. {
  21.     if (%power) {
  22.         %this.shieldStrength = 0.03;
  23.         GameBase::setRechargeRate(%this,10);
  24.     }
  25.     else {
  26.         %this.shieldStrength = 0;
  27.         GameBase::setRechargeRate(%this,0);
  28.     }
  29.     GameBase::setActive(%this,%power);
  30. }
  31.  
  32. function Sensor::onEnabled(%this)
  33. {
  34.     if (GameBase::isPowered(%this)) {
  35.         %this.shieldStrength = 0.03;                  
  36.         GameBase::setRechargeRate(%this,10);
  37.         GameBase::setActive(%this,true);
  38.     }
  39. }
  40.  
  41. function Sensor::onDisabled(%this)
  42. {
  43.     %this.shieldStrength = 0;
  44.     GameBase::setRechargeRate(%this,0);
  45.     Sensor::onDeactivate(%this);
  46. }
  47.  
  48. function Sensor::onDestroyed(%this)
  49. {
  50.     StaticShape::objectiveDestroyed(%this);
  51.     %this.shieldStrength = 0;
  52.     GameBase::setRechargeRate(%this,0);
  53.     Sensor::onDeactivate(%this);
  54.     %sensorName = GameBase::getDataName(%this);
  55.     if(%sensorName == DeployableSensorJammer) 
  56.        $TeamItemCount[GameBase::getTeam(%this) @ "DeployableSensorJammerPack"]--;
  57.     else if(%sensorName == DeployableMotionSensor) 
  58.        $TeamItemCount[GameBase::getTeam(%this) @ "MotionSensorPack"]--;
  59.     else if(%sensorName == DeployablePulseSensor) 
  60.        $TeamItemCount[GameBase::getTeam(%this) @ "PulseSensorPack"]--;
  61.     calcRadiusDamage(%this, $DebrisDamageType, 2.5, 0.05, 25, 13, 2, 0.40, 
  62.         0.1, 250, 100);
  63. }
  64.  
  65. function Sensor::onDamage(%this,%type,%value,%pos,%vec,%mom,%object)
  66. {
  67.    if(%this.objectiveLine)
  68.         %this.lastDamageTeam = GameBase::getTeam(%object);
  69.     %TDS= 1;
  70.     if(GameBase::getTeam(%this) == GameBase::getTeam(%object)) {
  71.         %name = GameBase::getDataName(%this);
  72.         if(%name != DeployableMotionSensor && %name != DeployablePulseSensor && %name != DeployableSensorJammer )                
  73.               %TDS = $Server::TeamDamageScale;
  74.     }
  75.     StaticShape::shieldDamage(%this,%type,%value * %TDS,%pos,%vec,%mom,%object);
  76. }
  77.  
  78.  
  79. //------------------------------------------------------------------------
  80.  
  81. SensorData PulseSensor
  82. {
  83.    description = "Large Pulse Sensor";
  84.    shapeFile = "radar";
  85. //   explosionId = DebrisExp;
  86.    maxDamage = 1.5;
  87.    range = 400;
  88.    dopplerVelocity = 0;
  89.    castLOS = true;
  90.    supression = false;
  91.     visibleToSensor = true;
  92.     sequenceSound[0] = { "power", SoundSensorPower };
  93.     mapFilter = 4;
  94.     mapIcon = "M_Radar";
  95.     debrisId = flashDebrisLarge;
  96.    shieldShapeName = "shield_medium";
  97.     maxEnergy = 100;
  98.     damageSkinData = "objectDamageSkins";
  99.     shadowDetailMask = 16;
  100.     explosionId = LargeShockwave;
  101. };
  102.  
  103.  
  104. //------------------------------------------------------------------------
  105.  
  106. SensorData MediumPulseSensor
  107. {
  108.    description = "Medium Pulse Sensor";
  109.    shapeFile = "sensor_pulse_med";
  110. //   explosionId = DebrisExp;
  111.    maxDamage = 1.0;
  112.    range = 250;
  113.    dopplerVelocity = 0;
  114.    castLOS = true;
  115.    supression = false;
  116.     visibleToSensor = true;
  117.     sequenceSound[0] = { "power", SoundSensorPower };
  118.     mapFilter = 4;
  119.     mapIcon = "M_Radar";
  120.     debrisId = flashDebrisLarge;
  121.    shieldShapeName = "shield_medium";
  122.     maxEnergy = 100;
  123.     damageSkinData = "objectDamageSkins";
  124.     shadowDetailMask = 16;
  125. };
  126.  
  127.  
  128. //------------------------------------------------------------------------
  129.  
  130. SensorData DeployableMotionSensor
  131. {
  132.    description = "Motion Sensor";
  133.     className = "DeployableSensor";
  134.     shapeFile = "sensor_small";
  135.     shadowDetailMask = 16;
  136.     visibleToSensor = true;
  137.     sequenceSound[0] = { "deploy", SoundActivateMotionSensor };
  138. //   explosionId = DebrisExp;
  139.     damageLevel = {0.8, 1.0};
  140.     maxDamage = 0.4;
  141.     debrisId = defaultDebrisSmall;
  142.     range = 50;
  143.     dopplerVelocity = 1;
  144.    castLOS = false;
  145.    supression = false;
  146.     supressable = false;
  147.     pinger = false;
  148.     mapFilter = 4;
  149.     mapIcon = "M_motionSensor";
  150.     damageSkinData = "objectDamageSkins";
  151. };
  152.  
  153.  
  154. SensorData DeployablePulseSensor
  155. {
  156.     description = "Remote Pulse Sensor";
  157.     className = "DeployableSensor";
  158.     shapeFile = "radar_small";
  159.     shadowDetailMask = 4;
  160.     visibleToSensor = true;
  161.     sequenceSound[0] = { "deploy", SoundActivateMotionSensor };
  162.     damageLevel = {0.8, 1.0};
  163.     maxDamage = 1.0;
  164. //   explosionId = DebrisExp;
  165.     debrisId = flashDebrisSmall;
  166.     range = 200;
  167.     castLOS = true;
  168.     supression = false;
  169.     mapFilter = 4;
  170.     mapIcon = "M_Radar";
  171. };
  172.  
  173.  
  174. SensorData DeployableSensorJammer
  175. {
  176.     description = "Remote Sensor Jammer";
  177.     className = "DeployableSensor";
  178.     shapeFile = "sensor_jammer";
  179.     shadowDetailMask = 4;
  180.     visibleToSensor = true;
  181.     sequenceSound[0] = { "deploy", SoundActivateMotionSensor };
  182.     damageLevel = {0.8, 1.0};
  183.     maxDamage = 0.5;
  184. //    explosionId = DebrisExp;
  185.     debrisId = defaultDebrisSmall;
  186.     range = 80;
  187.     castLOS = true;
  188.     supression = true;
  189.     mapFilter = 4;
  190.     mapIcon = "M_sensorJammer";
  191. };
  192.  
  193.  
  194.  
  195. function DeployableSensor::onAdd(%this)
  196. {
  197.     schedule("DeployableSensor::deploy(" @ %this @ ");",1,%this);
  198. }
  199.  
  200. function DeployableSensor::deploy(%this)
  201. {
  202.     GameBase::playSequence(%this,1,"deploy");
  203. }
  204.  
  205. function DeployableSensor::onEndSequence(%this,%thread)
  206. {
  207.     GameBase::setActive(%this,true);
  208.     GameBase::playSequence(%this,0,"power");
  209. }
  210.  
  211. //------------------------------------------------------------------------
  212.  
  213.  
  214.